home *** CD-ROM | disk | FTP | other *** search
- //////////////////////////////////////////////
- // VGA Function Declarations - Barny Mercer //
- // //
- // Created : 1/8/95 @ 6:45pm //
- //////////////////////////////////////////////
-
- #define VID_320x200 0x0013
- #define VID_TEXT 0x0003
-
- #ifndef PI
- #define PI 3.141592654
- #endif
-
- void PutPixel( int X, int Y, unsigned char Colour );
- void FloatDrawLine( int X1, int Y1, int X2, int Y2, unsigned char Colour );
- void BresDrawLine( int X1, int Y1, int X2, int Y2, unsigned char Colour );
- void VidMode( int Mode );
- void Cls( unsigned char Colour );
-
- void DrawCircle( int X, int Y, int Radius, unsigned char Colour );
- void ImpDrawCircle( int X, int Y, int Radius, unsigned char Colour );
-
-
- int Round(float Value);
-